home *** CD-ROM | disk | FTP | other *** search
/ Invisible Universe / Invisible Universe (1995)(Voyager)[Mac-PC].iso / mac / MOVIES / STARMAP.DIR / 00075_Script_75 < prev    next >
Text File  |  1995-11-16  |  238b  |  12 lines

  1. on hideSprites s, f
  2.   repeat with i = s to f
  3.     set the visibility of sprite i = 0
  4.   end repeat
  5. end hideSprites
  6.  
  7. on showSprites s, f
  8.   repeat with i = s to f
  9.     set the visibility of sprite i = 1
  10.   end repeat
  11. end showSprites
  12.